80e411581e1abe50e005bd8718267b134e0fec02,android/tool/src/processing/app/tools/android/AndroidTool.java,AndroidTool,installAndRun,#String#String#,537
Before Change
}
// Returns the last JDWP port that in use before launching
final String prevPort = startSketch(device);
if (prevPort == null) {
return;
}
new AndroidRunner(editor, editor.getSketch()).launch(ADB_SOCKET_PORT);
//success = debugSketch(device, prevPort);
}
After Change
return;
}
startSketch(device);
}
protected boolean waitUntilReady(final String device) {